home *** CD-ROM | disk | FTP | other *** search
/ Cubase Magazine 30 / Issue #30.iso / pc / 2-SOFTWARE / RTEQ 3.0 / SRC / PRECOMP.H < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-31  |  2.7 KB  |  55 lines

  1. /**********************************************************************************
  2. *                                                                                 *
  3. *    PRECOMP.H: Precompiled header                                                *
  4. *                                                                                 *
  5. *    Copyright (C) 2000  Andrei Grecu                                             *
  6. *                                                                                 *
  7. *    This program is free software; you can redistribute it and/or modify         *
  8. *    it under the terms of the GNU General Public License as published by         *
  9. *    the Free Software Foundation; either version 2 of the License, or            *
  10. *    (at your option) any later version.                                          *
  11. *                                                                                 *
  12. *    This program is distributed in the hope that it will be useful,              *
  13. *    but WITHOUT ANY WARRANTY; without even the implied warranty of               *
  14. *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                *
  15. *    GNU General Public License for more details.                                 *
  16. *                                                                                 *
  17. *    You should have received a copy of the GNU General Public License            *
  18. *    along with this program; if not, write to the Free Software                  *
  19. *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    *
  20. *                                                                                 *
  21. *    If you have questions, bug reports regarding my code please contact me at:   *
  22. *    andrei.grecu@aon.at                                                          *
  23. *                                                                                 *
  24. *    Home page:                                                                   *
  25. *    http://members.aon.at/grxpage/index.htm                                      *
  26. *                                                                                 *
  27. **********************************************************************************/
  28.  
  29. #if _MSC_VER > 1000
  30. #pragma once
  31. #endif // _MSC_VER > 1000
  32.  
  33.  
  34. // Windows Header Files:
  35. #include <windows.h>
  36.  
  37. // C RunTime Header Files
  38. #include <stdlib.h>
  39. #include <malloc.h>
  40. #include <memory.h>
  41. #include <tchar.h>
  42. #include <math.h>
  43.  
  44. // Local Header Files
  45. #include <commctrl.h>
  46.  
  47. typedef unsigned short int        USHORT;
  48. typedef double    DOUBLE;
  49.  
  50. typedef HWND far*    LPHWND;
  51. typedef SHORT far*    LPSHORT;
  52. typedef DOUBLE far*    LPDOUBLE;
  53. typedef FLOAT far*    LPFLOAT;
  54.  
  55. typedef HGLOBAL far*    LPHGLOBAL;